Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | ;(function( window, document, undefined ) { |
||
4 | var Plugin = function( navigationSelector, options ) |
||
5 | { |
||
6 | this.el = document.querySelector( navigationSelector ); |
||
7 | if( this.el ) { |
||
8 | this.aF = new AnimationFrame(); |
||
9 | this.options = castor._extend( this.defaults, options ); |
||
10 | this.init(); |
||
11 | } |
||
12 | }; |
||
13 | |||
68 |
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.